-
Notifications
You must be signed in to change notification settings - Fork 10.4k
[wrangler] Document new multiworker support #18467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 files reviewed, 2 total issue(s) found.
src/content/docs/workers/runtime-apis/bindings/service-bindings/index.mdx
Outdated
Show resolved
Hide resolved
src/content/docs/workers/runtime-apis/bindings/service-bindings/index.mdx
Show resolved
Hide resolved
Deploying cloudflare-docs with
|
| Latest commit: |
b9db5f4
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://18e04cc9.cloudflare-docs-7ou.pages.dev |
| Branch Preview URL: | https://penalosa-patch-2.cloudflare-docs-7ou.pages.dev |
|
Files with changes (up to 15) |
src/content/docs/workers/runtime-apis/bindings/service-bindings/index.mdx
Outdated
Show resolved
Hide resolved
src/content/docs/workers/runtime-apis/bindings/service-bindings/index.mdx
Outdated
Show resolved
Hide resolved
…s/index.mdx Co-authored-by: ToriLindsay <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 files reviewed, 2 total issue(s) found.
| - ANOTHER_WORKER: another-worker [not connected] | ||
| ``` | ||
|
|
||
| Wrangler also supports running multiple Workers at once with one command. To try it out, pass multiple `-c` flags to Wrangler, like this: `wrangler dev -c wrangler.toml -c ../other-worker/wrangler.toml`. The first config will be treated as the _primary_ worker, which will be exposed over HTTP as usual at `http://localhost:8787`. The remaining config files will be treated as _secondary_ and will only be accessible via a service binding from the primary worker. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Wrangler also supports running multiple Workers at once with one command. To try it out, pass multiple `-c` flags to Wrangler, like this: `wrangler dev -c wrangler.toml -c ../other-worker/wrangler.toml`. The first config will be treated as the _primary_ worker, which will be exposed over HTTP as usual at `http://localhost:8787`. The remaining config files will be treated as _secondary_ and will only be accessible via a service binding from the primary worker. | |
| Wrangler also supports running multiple Workers at once with one command. To try it out, pass multiple `-c` flags to Wrangler, like this: `wrangler dev -c wrangler.toml -c ../other-worker/wrangler.toml`. The first config will be treated as the _primary_ Worker, which will be exposed over HTTP as usual at `http://localhost:8787`. The remaining config files will be treated as _secondary_ and will only be accessible via a service binding from the primary Worker. |
Issues:
- Style Guide - (Terms-error) Use 'Worker' instead of 'worker'.
Fix Explanation:
The term 'Worker' should be capitalized as it refers to a specific concept or entity within the context of the documentation. This change helps in distinguishing it as a proper noun, enhancing clarity and consistency with the style guide.
Fixes #18449